From fceb225f85d97343d575bec253bd465e9e499d31 Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 17 Mar 2006 10:57:28 +0100 Subject: [PATCH] Declare inline function as 'static inline', not 'extern inline'. Fixes the ioemu build which was broken on some systems. Signed-off-by: Keir Fraser --- tools/ioemu/hw/vga.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ioemu/hw/vga.c b/tools/ioemu/hw/vga.c index 51980ba79c..3120ebac5d 100644 --- a/tools/ioemu/hw/vga.c +++ b/tools/ioemu/hw/vga.c @@ -1340,7 +1340,7 @@ void vga_invalidate_scanlines(VGAState *s, int y1, int y2) } } -extern inline int cmp_vram(VGAState *s, int offset, int n) +static inline int cmp_vram(VGAState *s, int offset, int n) { long *vp, *sp; -- 2.30.2